home *** CD-ROM | disk | FTP | other *** search
/ Amiga CD-ROM Collection / Amiga CD-ROM Collection - Auge 4000 and Cactus and Demo Util.iso / auge4000 / 46 / lib / string / strpbrk.c < prev    next >
C/C++ Source or Header  |  1990-06-20  |  323b  |  29 lines

  1.  
  2. /*
  3.  *  STRPBRK.C
  4.  *
  5.  *  (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  6.  */
  7.  
  8. #include <string.h>
  9.  
  10. char *
  11. strpbrk(str, toks)
  12. const char *str;
  13. const char *toks;
  14. {
  15.     char c;
  16.  
  17.     while (c = *str) {
  18.     const char *p = toks;
  19.     while (*p) {
  20.         if (*p == c)
  21.         return(str);
  22.         ++p;
  23.     }
  24.     ++str;
  25.     }
  26.     return(NULL);
  27. }
  28.  
  29.